go/types.environment.hasCallOrRecv (field)

10 uses

	go/types (current package)
		builtins.go#L43: 			check.hasCallOrRecv = b
		builtins.go#L44: 		}(check.hasCallOrRecv)
		builtins.go#L45: 		check.hasCallOrRecv = false
		builtins.go#L167: 			if !check.hasCallOrRecv {
		call.go#L238: 			check.hasCallOrRecv = true
		call.go#L330: 	check.hasCallOrRecv = true
		check.go#L86: 	hasCallOrRecv bool                   // set if an expression contains a function call or channel receive operation
		expr.go#L153: 			check.hasCallOrRecv = true
		range.go#L38: 	check.hasCallOrRecv = false
		range.go#L41: 	if isTypes2 && x.mode != invalid && sValue == nil && !check.hasCallOrRecv {